XMLSAXAddNodeAttr XML SAX 

Declaration:

FUNCTION   XMLSAXAddNodeAttr
(   XMLHandle :LONGINT;
    nodeAttrName :STRING;
    nodeAttrValue :STRING
) :INTEGER ;

Description:

Write XML using SAX, adds a node attributes to a node begun with XMLSAXBeginNode.



  XMLSAXAddNodeValue XML SAX 

Declaration:

FUNCTION   XMLSAXAddNodeValue
(   XMLHandle :LONGINT;
    nodeValue :STRING
) :INTEGER ;

Description:

Write XML using SAX, adds a node value to a node begun with XMLSAXBeginNode.



  XMLSAXBeginDocFile XML SAX 

Declaration:

FUNCTION   XMLSAXBeginDocFile
(   XMLHandle :LONGINT;
    whichPath :INTEGER;
    filename :STRING
) :INTEGER ;

Description:

Write XML using SAX, begin of a document file. XMLSAXEndDoc ends a document.



  XMLSAXBeginDocMemory XML SAX 

Declaration:

FUNCTION   XMLSAXBeginDocMemory
( XMLHandle:LONGINT ) :INTEGER ;

Description:

Write XML using SAX, begin of a document in memory. XMLSAXEndDocMemory ends a document.



  XMLSAXBeginNode XML SAX 

Declaration:

FUNCTION   XMLSAXBeginNode
(   XMLHandle :LONGINT;
    nodeName :STRING
) :INTEGER ;

Description:

Write XML using SAX, begin of a node. XMLSAXEndNode ends a node



  XMLSAXEndDoc XML SAX 

Declaration:

FUNCTION   XMLSAXEndDoc
( XMLHandle:LONGINT ) :INTEGER ;

Description:

Write XML using SAX, end of a document. XMLSAXBeginDocFile begins a document.



  XMLSAXEndDocMemory XML SAX 

Declaration:

FUNCTION   XMLSAXEndDocMemory
(   XMLHandle :LONGINT;
  VAR  XMLData :DYNARRAY[] of CHAR
) :INTEGER ;

Description:

Write XML using SAX, end of a document. XMLSAXBeginDocMemory begins a document.



  XMLSAXEndNode XML SAX 

Declaration:

FUNCTION   XMLSAXEndNode
( XMLHandle:LONGINT ) :INTEGER ;

Description:

Write XML using SAX, end of a node. XMLSAXBeginNode begins a node.



  XMLSAXParseFile XML SAX 

Declaration:

FUNCTION   XMLSAXParseFile
(   XMLHandle :LONGINT;
    whichPath :INTEGER;
    filename :STRING;
    nodeCallback :PROCEDURE
) :INTEGER ;

Description:

Parse an XML file using SAX.



  XMLSAXParseMemory XML SAX 

Declaration:

FUNCTION   XMLSAXParseMemory
(   XMLHandle :LONGINT;
    XMLData :DYNARRAY[] of CHAR;
    nodeCallback :PROCEDURE
) :INTEGER ;

Description:

Parse an XML from memory using SAX.